home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Presen…rary 6 (Reseller Edition) / Apple Ref. & Pres. Lib.v6.0.toast / pc / 3-Presentations / Apple Demos / CPUs / Macintosh Solutions Demo / Macintosh Solutions 1.0 / card_17083.txt < prev    next >
Text File  |  1990-08-24  |  35KB  |  1,638 lines

  1. -- card: 17083 from stack: in.0
  2. -- bmap block id: 19457
  3. -- flags: 4000
  4. -- background id: 16807
  5. -- name: Software
  6. ----- HyperTalk script -----
  7. on showMyField category
  8.   global litUp
  9.   if litUp is empty then put script of btn "NameHolder" into litUp
  10.   set hilight of btn litUp to false
  11.   set hilight of btn category to true
  12.   hide cd fld litUp
  13.   put category into litUp
  14.   lock screen
  15.  
  16.   set cursor to busy
  17.   show cd fld category
  18.   set scroll of cd fld category to 0
  19.   set script of btn "NameHolder" to category
  20.  
  21.   unlock screen with visual iris close
  22. end showMyField
  23.  
  24.  
  25.  
  26.  
  27. -- part 1 (field)
  28. -- low flags: 00
  29. -- high flags: 6007
  30. -- rect: left=274 top=150 right=285 bottom=512
  31. -- title width / last selected line: 0
  32. -- icon id / first selected line: 0 / 0
  33. -- text alignment: 0
  34. -- font id: 3
  35. -- text size: 10
  36. -- style flags: 0
  37. -- line height: 13
  38. -- part name: List
  39.  
  40.  
  41. -- part 2 (button)
  42. -- low flags: 00
  43. -- high flags: 8003
  44. -- rect: left=412 top=320 right=342 bottom=512
  45. -- title width / last selected line: 0
  46. -- icon id / first selected line: 0 / 0
  47. -- text alignment: 1
  48. -- font id: 0
  49. -- text size: 12
  50. -- style flags: 0
  51. -- line height: 16
  52. -- part name: ModFields
  53. ----- HyperTalk script -----
  54. on mouseUp
  55.   repeat with x = 2 to the number of cd flds
  56.  
  57.  
  58.     repeat while last char of cd fld x is return
  59.       delete last char of cd fld x
  60.     end repeat
  61.     put return after cd fld x
  62.  
  63.     set cursor to busy
  64.   end repeat
  65. end mouseUp
  66.  
  67.  
  68.  
  69.  
  70. -- build list of btns & put it in cd fld list
  71. on mouseUp
  72.   repeat with i = 3 to 35 -- the number of btns
  73.     set cursor to busy
  74.     put short name of btn i after temp
  75.     put return after temp
  76.   end repeat
  77.   put temp into cd fld list
  78. end mouseUp
  79.  
  80. -- writeOut the list
  81. on mouseUp
  82.   put newFileName() into thisFile
  83.   if thisFile is empty then exit mouseUp
  84.   open file thisFile
  85.   repeat with i = 3 to 35 --the number of btns
  86.     set cursor to busy
  87.     write cd fld (short name of btn i) to file thisFile
  88.     write return & "‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî‚Äî" & return & return to file thisFile
  89.   end repeat
  90.   close file thisFile
  91. end mouseUp
  92.  
  93. -- build list of empty (no apps) categories &
  94. -- put the list into fld "list"
  95. on mouseUp
  96.   put empty into temp
  97.   repeat with i = 2 to the number of cd flds
  98.     if line 2 of cd fld i is empty then
  99.       set cursor to busy
  100.       put short name of cd fld i after temp
  101.       put return after temp
  102.     end if
  103.   end repeat
  104.   put temp into cd fld list
  105. end mouseUp
  106.  
  107.  
  108. -- set rect of flds
  109. on mouseUp
  110.   put rect of cd fld 2 into thisRect
  111.   repeat with i = 3 to the number of cd flds
  112.     set cursor to busy
  113.     set rect of cd fld i to thisRect
  114.     --set textFont of cd fld i to Times
  115.     --set textSize of cd fld i to 14
  116.     --set textHeight of cd fld i to 16
  117.     --set wideMargins of cd fld i to true
  118.   end repeat
  119. end mouseUp
  120.  
  121. -- make the fields
  122. on mouseUp
  123.   repeat with i = 1 to the number of lines in cd field 1
  124.     set cursor to busy
  125.     doMenu "new field"
  126.     set name of cd field (the number of card fields) to line i of cd field 1
  127.     put line i of cd fld 1 into cd fld (the number of card fields)
  128.     set style of cd field (the number of card fields) to scrolling
  129.     --put i-1*32
  130.     set top of cd field (the number of card fields) to -32 + ((i-1) * 32)
  131.     set height of cd field (the number of card fields) to 32
  132.     put i
  133.   end repeat
  134.   choose browse tool
  135. end mouseUp
  136.  
  137.  
  138.  
  139. -- part 62 (field)
  140. -- low flags: 80
  141. -- high flags: 2007
  142. -- rect: left=274 top=8 right=145 bottom=512
  143. -- title width / last selected line: 0
  144. -- icon id / first selected line: 0 / 0
  145. -- text alignment: 0
  146. -- font id: 20
  147. -- text size: 14
  148. -- style flags: 0
  149. -- line height: 16
  150. -- part name: Word Processing
  151.  
  152.  
  153. -- part 63 (field)
  154. -- low flags: 80
  155. -- high flags: 2007
  156. -- rect: left=274 top=8 right=145 bottom=512
  157. -- title width / last selected line: 0
  158. -- icon id / first selected line: 0 / 0
  159. -- text alignment: 0
  160. -- font id: 20
  161. -- text size: 14
  162. -- style flags: 0
  163. -- line height: 16
  164. -- part name: Spreadsheets
  165.  
  166.  
  167. -- part 64 (field)
  168. -- low flags: 80
  169. -- high flags: 2007
  170. -- rect: left=274 top=8 right=145 bottom=512
  171. -- title width / last selected line: 0
  172. -- icon id / first selected line: 0 / 0
  173. -- text alignment: 0
  174. -- font id: 20
  175. -- text size: 14
  176. -- style flags: 0
  177. -- line height: 16
  178. -- part name: Database
  179.  
  180.  
  181. -- part 65 (field)
  182. -- low flags: 80
  183. -- high flags: 2007
  184. -- rect: left=274 top=8 right=145 bottom=512
  185. -- title width / last selected line: 0
  186. -- icon id / first selected line: 0 / 0
  187. -- text alignment: 0
  188. -- font id: 20
  189. -- text size: 14
  190. -- style flags: 0
  191. -- line height: 16
  192. -- part name: E-Mail
  193.  
  194.  
  195. -- part 66 (field)
  196. -- low flags: 80
  197. -- high flags: 2007
  198. -- rect: left=274 top=8 right=145 bottom=512
  199. -- title width / last selected line: 0
  200. -- icon id / first selected line: 0 / 0
  201. -- text alignment: 0
  202. -- font id: 20
  203. -- text size: 14
  204. -- style flags: 0
  205. -- line height: 16
  206. -- part name: Curriculum
  207.  
  208.  
  209. -- part 67 (field)
  210. -- low flags: 80
  211. -- high flags: 2007
  212. -- rect: left=274 top=8 right=145 bottom=512
  213. -- title width / last selected line: 0
  214. -- icon id / first selected line: 0 / 0
  215. -- text alignment: 0
  216. -- font id: 20
  217. -- text size: 14
  218. -- style flags: 0
  219. -- line height: 16
  220. -- part name: Accounting
  221.  
  222.  
  223. -- part 68 (field)
  224. -- low flags: 80
  225. -- high flags: 2007
  226. -- rect: left=274 top=8 right=145 bottom=512
  227. -- title width / last selected line: 0
  228. -- icon id / first selected line: 0 / 0
  229. -- text alignment: 0
  230. -- font id: 20
  231. -- text size: 14
  232. -- style flags: 0
  233. -- line height: 16
  234. -- part name: Business Management
  235.  
  236.  
  237. -- part 69 (field)
  238. -- low flags: 80
  239. -- high flags: 2007
  240. -- rect: left=274 top=8 right=145 bottom=512
  241. -- title width / last selected line: 0
  242. -- icon id / first selected line: 0 / 0
  243. -- text alignment: 0
  244. -- font id: 20
  245. -- text size: 14
  246. -- style flags: 0
  247. -- line height: 16
  248. -- part name: Presentations
  249.  
  250.  
  251. -- part 70 (field)
  252. -- low flags: 80
  253. -- high flags: 2007
  254. -- rect: left=274 top=8 right=145 bottom=512
  255. -- title width / last selected line: 0
  256. -- icon id / first selected line: 0 / 0
  257. -- text alignment: 0
  258. -- font id: 20
  259. -- text size: 14
  260. -- style flags: 0
  261. -- line height: 16
  262. -- part name: Data Entry & Retrieval
  263.  
  264.  
  265. -- part 71 (field)
  266. -- low flags: 80
  267. -- high flags: 2007
  268. -- rect: left=274 top=8 right=145 bottom=512
  269. -- title width / last selected line: 0
  270. -- icon id / first selected line: 0 / 0
  271. -- text alignment: 0
  272. -- font id: 20
  273. -- text size: 14
  274. -- style flags: 0
  275. -- line height: 16
  276. -- part name: Publishing
  277.  
  278.  
  279. -- part 72 (field)
  280. -- low flags: 80
  281. -- high flags: 2007
  282. -- rect: left=274 top=8 right=145 bottom=512
  283. -- title width / last selected line: 0
  284. -- icon id / first selected line: 0 / 0
  285. -- text alignment: 0
  286. -- font id: 20
  287. -- text size: 14
  288. -- style flags: 0
  289. -- line height: 16
  290. -- part name: Architecture/Drafting
  291.  
  292.  
  293. -- part 73 (field)
  294. -- low flags: 80
  295. -- high flags: 2007
  296. -- rect: left=274 top=8 right=145 bottom=512
  297. -- title width / last selected line: 0
  298. -- icon id / first selected line: 0 / 0
  299. -- text alignment: 0
  300. -- font id: 20
  301. -- text size: 14
  302. -- style flags: 0
  303. -- line height: 16
  304. -- part name: CAD/CAM
  305.  
  306.  
  307. -- part 74 (field)
  308. -- low flags: 80
  309. -- high flags: 2007
  310. -- rect: left=274 top=8 right=145 bottom=512
  311. -- title width / last selected line: 0
  312. -- icon id / first selected line: 0 / 0
  313. -- text alignment: 0
  314. -- font id: 20
  315. -- text size: 14
  316. -- style flags: 0
  317. -- line height: 16
  318. -- part name: Unix
  319.  
  320.  
  321. -- part 75 (field)
  322. -- low flags: 80
  323. -- high flags: 2007
  324. -- rect: left=274 top=8 right=145 bottom=512
  325. -- title width / last selected line: 0
  326. -- icon id / first selected line: 0 / 0
  327. -- text alignment: 0
  328. -- font id: 20
  329. -- text size: 14
  330. -- style flags: 0
  331. -- line height: 16
  332. -- part name: Software Engineering
  333.  
  334.  
  335. -- part 76 (field)
  336. -- low flags: 80
  337. -- high flags: 2007
  338. -- rect: left=274 top=8 right=145 bottom=512
  339. -- title width / last selected line: 0
  340. -- icon id / first selected line: 0 / 0
  341. -- text alignment: 0
  342. -- font id: 20
  343. -- text size: 14
  344. -- style flags: 0
  345. -- line height: 16
  346. -- part name: Modeling and Simulation Tools
  347.  
  348.  
  349. -- part 77 (field)
  350. -- low flags: 80
  351. -- high flags: 2007
  352. -- rect: left=274 top=8 right=145 bottom=512
  353. -- title width / last selected line: 0
  354. -- icon id / first selected line: 0 / 0
  355. -- text alignment: 0
  356. -- font id: 20
  357. -- text size: 14
  358. -- style flags: 0
  359. -- line height: 16
  360. -- part name: 3-D Rendering
  361.  
  362.  
  363. -- part 78 (field)
  364. -- low flags: 00
  365. -- high flags: 2007
  366. -- rect: left=274 top=8 right=145 bottom=512
  367. -- title width / last selected line: 0
  368. -- icon id / first selected line: 0 / 0
  369. -- text alignment: 0
  370. -- font id: 20
  371. -- text size: 14
  372. -- style flags: 0
  373. -- line height: 16
  374. -- part name: Animation
  375.  
  376.  
  377. -- part 81 (button)
  378. -- low flags: 00
  379. -- high flags: A003
  380. -- rect: left=311 top=320 right=342 bottom=411
  381. -- title width / last selected line: 0
  382. -- icon id / first selected line: 0 / 0
  383. -- text alignment: 1
  384. -- font id: 0
  385. -- text size: 12
  386. -- style flags: 0
  387. -- line height: 16
  388. -- part name: ModButtons
  389. ----- HyperTalk script -----
  390.  
  391. on mouseUp
  392.   repeat with i = 20 to 35
  393.     set top of btn i to bottom of btn (i-1)-1
  394.     --set left of btn i to 129
  395.   end repeat
  396. end mouseUp
  397.  
  398.  
  399. on mouseUp -- ALPHABETIZE BUTTONS
  400.   global temp
  401.   put empty into temp
  402.   repeat with i = 3 to the number of btns
  403.     put short name of btn i after temp
  404.     put return after temp
  405.   end repeat
  406.   put sort(temp) into temp
  407.   if line 1 of temp is empty then delete line 1 of temp
  408.   repeat with i = 3 to the number of btns
  409.     set name of btn i to line i-2 of temp
  410.   end repeat
  411. end mouseUp
  412.  
  413. on mouseUp
  414.   repeat with i = 3 to the number of btns -- first two are utilities
  415.     set cursor to busy
  416.     set script of btn i to script of btn 3
  417.   end repeat
  418. end mouseUp
  419.  
  420. --on mouseUp
  421. answer "Utility scripts"
  422. end mouseUp
  423.  
  424.  
  425.  
  426.  
  427. on mouseUp
  428.   global temp
  429.   repeat with i = 1 to the number of lines in temp
  430.     put "(" & i & ")" && (line i of temp = line i of cd fld "list") & return after cd fld 28
  431.   end repeat
  432. end mouseUp
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444. on mouseUp
  445.   repeat with i = 15 to 21
  446.     set top of button i to -32 + ((i-1) * 32)
  447.     set left of btn i to 150
  448.   end repeat
  449. end mouseUp
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457. on mouseUp
  458.   repeat with i = 1 to the number of lines in cd field 1
  459.     set cursor to busy
  460.     doMenu "new button"
  461.     set style of button "new button" to rectangle
  462.     set top of button "new button" to -32 + ((i-1) * 32)
  463.     set left of btn "new button" to 0
  464.     set textAlign of btn "new button" to left
  465.     set name of button "new button" to line i of cd field 1
  466.     put i
  467.   end repeat
  468.   choose browse tool
  469. end mouseUp
  470.  
  471.  
  472.  
  473. -- part 82 (button)
  474. -- low flags: 00
  475. -- high flags: A002
  476. -- rect: left=0 top=37 right=55 bottom=130
  477. -- title width / last selected line: 0
  478. -- icon id / first selected line: 0 / 0
  479. -- text alignment: 0
  480. -- font id: 3
  481. -- text size: 9
  482. -- style flags: 0
  483. -- line height: 12
  484. -- part name: 3-D Rendering
  485. ----- HyperTalk script -----
  486. on mouseUp
  487.   showMyField (short name of me)
  488. end mouseUp
  489.  
  490.  
  491.  
  492. -- part 83 (button)
  493. -- low flags: 00
  494. -- high flags: A002
  495. -- rect: left=0 top=54 right=72 bottom=130
  496. -- title width / last selected line: 0
  497. -- icon id / first selected line: 0 / 0
  498. -- text alignment: 0
  499. -- font id: 3
  500. -- text size: 9
  501. -- style flags: 0
  502. -- line height: 12
  503. -- part name: Accounting
  504. ----- HyperTalk script -----
  505. on mouseUp
  506.   showMyField (short name of me)
  507. end mouseUp
  508.  
  509.  
  510.  
  511. -- part 84 (button)
  512. -- low flags: 00
  513. -- high flags: E002
  514. -- rect: left=0 top=71 right=89 bottom=130
  515. -- title width / last selected line: 0
  516. -- icon id / first selected line: 0 / 0
  517. -- text alignment: 0
  518. -- font id: 3
  519. -- text size: 9
  520. -- style flags: 0
  521. -- line height: 12
  522. -- part name: Animation
  523. ----- HyperTalk script -----
  524. on mouseUp
  525.   showMyField (short name of me)
  526. end mouseUp
  527.  
  528.  
  529.  
  530. -- part 85 (button)
  531. -- low flags: 00
  532. -- high flags: A002
  533. -- rect: left=0 top=88 right=106 bottom=130
  534. -- title width / last selected line: 0
  535. -- icon id / first selected line: 0 / 0
  536. -- text alignment: 0
  537. -- font id: 3
  538. -- text size: 9
  539. -- style flags: 0
  540. -- line height: 12
  541. -- part name: Apple IIe Emulation
  542. ----- HyperTalk script -----
  543. on mouseUp
  544.   showMyField (short name of me)
  545. end mouseUp
  546.  
  547.  
  548.  
  549. -- part 86 (button)
  550. -- low flags: 00
  551. -- high flags: A002
  552. -- rect: left=0 top=105 right=123 bottom=130
  553. -- title width / last selected line: 0
  554. -- icon id / first selected line: 0 / 0
  555. -- text alignment: 0
  556. -- font id: 3
  557. -- text size: 9
  558. -- style flags: 0
  559. -- line height: 12
  560. -- part name: Architecture/Drafting
  561. ----- HyperTalk script -----
  562. on mouseUp
  563.   showMyField (short name of me)
  564. end mouseUp
  565.  
  566.  
  567.  
  568. -- part 87 (button)
  569. -- low flags: 00
  570. -- high flags: A002
  571. -- rect: left=0 top=122 right=140 bottom=130
  572. -- title width / last selected line: 0
  573. -- icon id / first selected line: 0 / 0
  574. -- text alignment: 0
  575. -- font id: 3
  576. -- text size: 9
  577. -- style flags: 0
  578. -- line height: 12
  579. -- part name: Authoring Tools
  580. ----- HyperTalk script -----
  581. on mouseUp
  582.   showMyField (short name of me)
  583. end mouseUp
  584.  
  585.  
  586.  
  587. -- part 88 (button)
  588. -- low flags: 00
  589. -- high flags: A002
  590. -- rect: left=0 top=139 right=157 bottom=130
  591. -- title width / last selected line: 0
  592. -- icon id / first selected line: 0 / 0
  593. -- text alignment: 0
  594. -- font id: 3
  595. -- text size: 9
  596. -- style flags: 0
  597. -- line height: 12
  598. -- part name: Bibliographic Tools
  599. ----- HyperTalk script -----
  600. on mouseUp
  601.   showMyField (short name of me)
  602. end mouseUp
  603.  
  604.  
  605.  
  606. -- part 89 (button)
  607. -- low flags: 00
  608. -- high flags: A002
  609. -- rect: left=0 top=156 right=174 bottom=130
  610. -- title width / last selected line: 0
  611. -- icon id / first selected line: 0 / 0
  612. -- text alignment: 0
  613. -- font id: 3
  614. -- text size: 9
  615. -- style flags: 0
  616. -- line height: 12
  617. -- part name: Business Management
  618. ----- HyperTalk script -----
  619. on mouseUp
  620.   showMyField (short name of me)
  621. end mouseUp
  622.  
  623.  
  624.  
  625. -- part 90 (button)
  626. -- low flags: 00
  627. -- high flags: A002
  628. -- rect: left=0 top=173 right=191 bottom=130
  629. -- title width / last selected line: 0
  630. -- icon id / first selected line: 0 / 0
  631. -- text alignment: 0
  632. -- font id: 3
  633. -- text size: 9
  634. -- style flags: 0
  635. -- line height: 12
  636. -- part name: CAD/CAM
  637. ----- HyperTalk script -----
  638. on mouseUp
  639.   showMyField (short name of me)
  640. end mouseUp
  641.  
  642.  
  643.  
  644. -- part 92 (button)
  645. -- low flags: 00
  646. -- high flags: A002
  647. -- rect: left=0 top=190 right=208 bottom=130
  648. -- title width / last selected line: 0
  649. -- icon id / first selected line: 0 / 0
  650. -- text alignment: 0
  651. -- font id: 3
  652. -- text size: 9
  653. -- style flags: 0
  654. -- line height: 12
  655. -- part name: Curriculum
  656. ----- HyperTalk script -----
  657. on mouseUp
  658.   showMyField (short name of me)
  659. end mouseUp
  660.  
  661.  
  662.  
  663. -- part 93 (button)
  664. -- low flags: 00
  665. -- high flags: A002
  666. -- rect: left=0 top=207 right=225 bottom=130
  667. -- title width / last selected line: 0
  668. -- icon id / first selected line: 0 / 0
  669. -- text alignment: 0
  670. -- font id: 3
  671. -- text size: 9
  672. -- style flags: 0
  673. -- line height: 12
  674. -- part name: Data Entry & Retrieval
  675. ----- HyperTalk script -----
  676. on mouseUp
  677.   showMyField (short name of me)
  678. end mouseUp
  679.  
  680.  
  681.  
  682. -- part 94 (button)
  683. -- low flags: 00
  684. -- high flags: A002
  685. -- rect: left=0 top=224 right=242 bottom=130
  686. -- title width / last selected line: 0
  687. -- icon id / first selected line: 0 / 0
  688. -- text alignment: 0
  689. -- font id: 3
  690. -- text size: 9
  691. -- style flags: 0
  692. -- line height: 12
  693. -- part name: Database
  694. ----- HyperTalk script -----
  695. on mouseUp
  696.   showMyField (short name of me)
  697. end mouseUp
  698.  
  699.  
  700.  
  701. -- part 95 (button)
  702. -- low flags: 00
  703. -- high flags: A002
  704. -- rect: left=0 top=241 right=259 bottom=130
  705. -- title width / last selected line: 0
  706. -- icon id / first selected line: 0 / 0
  707. -- text alignment: 0
  708. -- font id: 3
  709. -- text size: 9
  710. -- style flags: 0
  711. -- line height: 12
  712. -- part name: Discipline Specific Software
  713. ----- HyperTalk script -----
  714. on mouseUp
  715.   showMyField (short name of me)
  716. end mouseUp
  717.  
  718.  
  719.  
  720. -- part 96 (button)
  721. -- low flags: 00
  722. -- high flags: A002
  723. -- rect: left=0 top=258 right=276 bottom=130
  724. -- title width / last selected line: 0
  725. -- icon id / first selected line: 0 / 0
  726. -- text alignment: 0
  727. -- font id: 3
  728. -- text size: 9
  729. -- style flags: 0
  730. -- line height: 12
  731. -- part name: Document Processing
  732. ----- HyperTalk script -----
  733. on mouseUp
  734.   showMyField (short name of me)
  735. end mouseUp
  736.  
  737.  
  738.  
  739. -- part 97 (button)
  740. -- low flags: 00
  741. -- high flags: A002
  742. -- rect: left=0 top=275 right=293 bottom=130
  743. -- title width / last selected line: 0
  744. -- icon id / first selected line: 0 / 0
  745. -- text alignment: 0
  746. -- font id: 3
  747. -- text size: 9
  748. -- style flags: 0
  749. -- line height: 12
  750. -- part name: E-Mail
  751. ----- HyperTalk script -----
  752. on mouseUp
  753.   showMyField (short name of me)
  754. end mouseUp
  755.  
  756.  
  757.  
  758. -- part 98 (button)
  759. -- low flags: 00
  760. -- high flags: A002
  761. -- rect: left=0 top=292 right=310 bottom=130
  762. -- title width / last selected line: 0
  763. -- icon id / first selected line: 0 / 0
  764. -- text alignment: 0
  765. -- font id: 3
  766. -- text size: 9
  767. -- style flags: 0
  768. -- line height: 12
  769. -- part name: Education Multimedia
  770. ----- HyperTalk script -----
  771. on mouseUp
  772.   showMyField (short name of me)
  773. end mouseUp
  774.  
  775.  
  776.  
  777. -- part 99 (button)
  778. -- low flags: 00
  779. -- high flags: A002
  780. -- rect: left=129 top=37 right=55 bottom=259
  781. -- title width / last selected line: 0
  782. -- icon id / first selected line: 0 / 0
  783. -- text alignment: 0
  784. -- font id: 3
  785. -- text size: 9
  786. -- style flags: 0
  787. -- line height: 12
  788. -- part name: Executive Information System
  789. ----- HyperTalk script -----
  790. on mouseUp
  791.   showMyField (short name of me)
  792. end mouseUp
  793.  
  794.  
  795.  
  796. -- part 101 (button)
  797. -- low flags: 00
  798. -- high flags: A002
  799. -- rect: left=129 top=54 right=72 bottom=259
  800. -- title width / last selected line: 0
  801. -- icon id / first selected line: 0 / 0
  802. -- text alignment: 0
  803. -- font id: 3
  804. -- text size: 9
  805. -- style flags: 0
  806. -- line height: 12
  807. -- part name: File Server
  808. ----- HyperTalk script -----
  809. on mouseUp
  810.   showMyField (short name of me)
  811. end mouseUp
  812.  
  813.  
  814.  
  815. -- part 102 (field)
  816. -- low flags: 80
  817. -- high flags: 2007
  818. -- rect: left=274 top=8 right=145 bottom=512
  819. -- title width / last selected line: 0
  820. -- icon id / first selected line: 0 / 0
  821. -- text alignment: 0
  822. -- font id: 20
  823. -- text size: 14
  824. -- style flags: 0
  825. -- line height: 16
  826. -- part name: Document Processing
  827.  
  828.  
  829. -- part 103 (button)
  830. -- low flags: 00
  831. -- high flags: A002
  832. -- rect: left=129 top=71 right=89 bottom=259
  833. -- title width / last selected line: 0
  834. -- icon id / first selected line: 0 / 0
  835. -- text alignment: 0
  836. -- font id: 3
  837. -- text size: 9
  838. -- style flags: 0
  839. -- line height: 12
  840. -- part name: Gradebook/Lesson Planning
  841. ----- HyperTalk script -----
  842. on mouseUp
  843.   showMyField (short name of me)
  844. end mouseUp
  845.  
  846.  
  847.  
  848. -- part 104 (field)
  849. -- low flags: 80
  850. -- high flags: 2007
  851. -- rect: left=274 top=8 right=145 bottom=512
  852. -- title width / last selected line: 0
  853. -- icon id / first selected line: 0 / 0
  854. -- text alignment: 0
  855. -- font id: 20
  856. -- text size: 14
  857. -- style flags: 0
  858. -- line height: 16
  859. -- part name: Multimedia
  860.  
  861.  
  862. -- part 107 (field)
  863. -- low flags: 80
  864. -- high flags: 2007
  865. -- rect: left=274 top=8 right=145 bottom=512
  866. -- title width / last selected line: 0
  867. -- icon id / first selected line: 0 / 0
  868. -- text alignment: 0
  869. -- font id: 20
  870. -- text size: 14
  871. -- style flags: 0
  872. -- line height: 16
  873. -- part name: Science Research
  874.  
  875.  
  876. -- part 110 (button)
  877. -- low flags: 00
  878. -- high flags: A002
  879. -- rect: left=129 top=88 right=106 bottom=259
  880. -- title width / last selected line: 0
  881. -- icon id / first selected line: 0 / 0
  882. -- text alignment: 0
  883. -- font id: 3
  884. -- text size: 9
  885. -- style flags: 0
  886. -- line height: 12
  887. -- part name: Library Access
  888. ----- HyperTalk script -----
  889. on mouseUp
  890.   showMyField (short name of me)
  891. end mouseUp
  892.  
  893.  
  894.  
  895. -- part 111 (field)
  896. -- low flags: 80
  897. -- high flags: 2007
  898. -- rect: left=274 top=8 right=145 bottom=512
  899. -- title width / last selected line: 0
  900. -- icon id / first selected line: 0 / 0
  901. -- text alignment: 0
  902. -- font id: 20
  903. -- text size: 14
  904. -- style flags: 0
  905. -- line height: 16
  906. -- part name: Note Organizers
  907.  
  908.  
  909. -- part 113 (field)
  910. -- low flags: 80
  911. -- high flags: 2007
  912. -- rect: left=274 top=8 right=145 bottom=512
  913. -- title width / last selected line: 0
  914. -- icon id / first selected line: 0 / 0
  915. -- text alignment: 0
  916. -- font id: 20
  917. -- text size: 14
  918. -- style flags: 0
  919. -- line height: 16
  920. -- part name: Library Access
  921.  
  922.  
  923. -- part 114 (button)
  924. -- low flags: 00
  925. -- high flags: A002
  926. -- rect: left=129 top=105 right=123 bottom=259
  927. -- title width / last selected line: 0
  928. -- icon id / first selected line: 0 / 0
  929. -- text alignment: 0
  930. -- font id: 3
  931. -- text size: 9
  932. -- style flags: 0
  933. -- line height: 12
  934. -- part name: Modeling and Simulation Tools
  935. ----- HyperTalk script -----
  936. on mouseUp
  937.   showMyField (short name of me)
  938. end mouseUp
  939.  
  940.  
  941.  
  942. -- part 115 (field)
  943. -- low flags: 80
  944. -- high flags: 2007
  945. -- rect: left=274 top=8 right=145 bottom=512
  946. -- title width / last selected line: 0
  947. -- icon id / first selected line: 0 / 0
  948. -- text alignment: 0
  949. -- font id: 20
  950. -- text size: 14
  951. -- style flags: 0
  952. -- line height: 16
  953. -- part name: Statistics and Math
  954.  
  955.  
  956. -- part 116 (button)
  957. -- low flags: 00
  958. -- high flags: A002
  959. -- rect: left=129 top=122 right=140 bottom=259
  960. -- title width / last selected line: 0
  961. -- icon id / first selected line: 0 / 0
  962. -- text alignment: 0
  963. -- font id: 3
  964. -- text size: 9
  965. -- style flags: 0
  966. -- line height: 12
  967. -- part name: Multimedia
  968. ----- HyperTalk script -----
  969. on mouseUp
  970.   showMyField (short name of me)
  971. end mouseUp
  972.  
  973.  
  974.  
  975. -- part 117 (field)
  976. -- low flags: 80
  977. -- high flags: 2007
  978. -- rect: left=274 top=8 right=145 bottom=512
  979. -- title width / last selected line: 0
  980. -- icon id / first selected line: 0 / 0
  981. -- text alignment: 0
  982. -- font id: 20
  983. -- text size: 14
  984. -- style flags: 0
  985. -- line height: 16
  986. -- part name: Bibliographic Tools
  987.  
  988.  
  989. -- part 119 (button)
  990. -- low flags: 00
  991. -- high flags: A002
  992. -- rect: left=129 top=139 right=157 bottom=259
  993. -- title width / last selected line: 0
  994. -- icon id / first selected line: 0 / 0
  995. -- text alignment: 0
  996. -- font id: 3
  997. -- text size: 9
  998. -- style flags: 0
  999. -- line height: 12
  1000. -- part name: Note Organizers
  1001. ----- HyperTalk script -----
  1002. on mouseUp
  1003.   showMyField (short name of me)
  1004. end mouseUp
  1005.  
  1006.  
  1007.  
  1008. -- part 120 (field)
  1009. -- low flags: 80
  1010. -- high flags: 2007
  1011. -- rect: left=274 top=8 right=145 bottom=512
  1012. -- title width / last selected line: 0
  1013. -- icon id / first selected line: 0 / 0
  1014. -- text alignment: 0
  1015. -- font id: 20
  1016. -- text size: 14
  1017. -- style flags: 0
  1018. -- line height: 16
  1019. -- part name: Executive Information System
  1020.  
  1021.  
  1022. -- part 121 (button)
  1023. -- low flags: 00
  1024. -- high flags: A002
  1025. -- rect: left=129 top=156 right=174 bottom=259
  1026. -- title width / last selected line: 0
  1027. -- icon id / first selected line: 0 / 0
  1028. -- text alignment: 0
  1029. -- font id: 3
  1030. -- text size: 9
  1031. -- style flags: 0
  1032. -- line height: 12
  1033. -- part name: Presentations
  1034. ----- HyperTalk script -----
  1035. on mouseUp
  1036.   showMyField (short name of me)
  1037. end mouseUp
  1038.  
  1039.  
  1040.  
  1041. -- part 122 (field)
  1042. -- low flags: 80
  1043. -- high flags: 2007
  1044. -- rect: left=274 top=8 right=145 bottom=512
  1045. -- title width / last selected line: 0
  1046. -- icon id / first selected line: 0 / 0
  1047. -- text alignment: 0
  1048. -- font id: 20
  1049. -- text size: 14
  1050. -- style flags: 0
  1051. -- line height: 16
  1052. -- part name: Gradebook/Lesson Planning
  1053.  
  1054.  
  1055. -- part 123 (button)
  1056. -- low flags: 00
  1057. -- high flags: A002
  1058. -- rect: left=129 top=173 right=191 bottom=259
  1059. -- title width / last selected line: 0
  1060. -- icon id / first selected line: 0 / 0
  1061. -- text alignment: 0
  1062. -- font id: 3
  1063. -- text size: 9
  1064. -- style flags: 0
  1065. -- line height: 12
  1066. -- part name: Publishing
  1067. ----- HyperTalk script -----
  1068. on mouseUp
  1069.   showMyField (short name of me)
  1070. end mouseUp
  1071.  
  1072.  
  1073.  
  1074. -- part 124 (field)
  1075. -- low flags: 80
  1076. -- high flags: 2007
  1077. -- rect: left=274 top=8 right=145 bottom=512
  1078. -- title width / last selected line: 0
  1079. -- icon id / first selected line: 0 / 0
  1080. -- text alignment: 0
  1081. -- font id: 20
  1082. -- text size: 14
  1083. -- style flags: 0
  1084. -- line height: 16
  1085. -- part name: Student Management
  1086.  
  1087.  
  1088. -- part 125 (button)
  1089. -- low flags: 00
  1090. -- high flags: A002
  1091. -- rect: left=129 top=190 right=208 bottom=259
  1092. -- title width / last selected line: 0
  1093. -- icon id / first selected line: 0 / 0
  1094. -- text alignment: 0
  1095. -- font id: 3
  1096. -- text size: 9
  1097. -- style flags: 0
  1098. -- line height: 12
  1099. -- part name: Science Research
  1100. ----- HyperTalk script -----
  1101. on mouseUp
  1102.   showMyField (short name of me)
  1103. end mouseUp
  1104.  
  1105.  
  1106.  
  1107. -- part 126 (field)
  1108. -- low flags: 80
  1109. -- high flags: 2007
  1110. -- rect: left=274 top=8 right=145 bottom=512
  1111. -- title width / last selected line: 0
  1112. -- icon id / first selected line: 0 / 0
  1113. -- text alignment: 0
  1114. -- font id: 20
  1115. -- text size: 14
  1116. -- style flags: 0
  1117. -- line height: 16
  1118. -- part name: Student Productivity
  1119.  
  1120.  
  1121. -- part 127 (button)
  1122. -- low flags: 00
  1123. -- high flags: A002
  1124. -- rect: left=129 top=207 right=225 bottom=259
  1125. -- title width / last selected line: 0
  1126. -- icon id / first selected line: 0 / 0
  1127. -- text alignment: 0
  1128. -- font id: 3
  1129. -- text size: 9
  1130. -- style flags: 0
  1131. -- line height: 12
  1132. -- part name: Software Engineering
  1133. ----- HyperTalk script -----
  1134. on mouseUp
  1135.   showMyField (short name of me)
  1136. end mouseUp
  1137.  
  1138.  
  1139.  
  1140. -- part 128 (field)
  1141. -- low flags: 80
  1142. -- high flags: 2007
  1143. -- rect: left=274 top=8 right=145 bottom=512
  1144. -- title width / last selected line: 0
  1145. -- icon id / first selected line: 0 / 0
  1146. -- text alignment: 0
  1147. -- font id: 20
  1148. -- text size: 14
  1149. -- style flags: 0
  1150. -- line height: 16
  1151. -- part name: Education Multimedia
  1152.  
  1153.  
  1154. -- part 129 (button)
  1155. -- low flags: 00
  1156. -- high flags: A002
  1157. -- rect: left=129 top=224 right=242 bottom=259
  1158. -- title width / last selected line: 0
  1159. -- icon id / first selected line: 0 / 0
  1160. -- text alignment: 0
  1161. -- font id: 3
  1162. -- text size: 9
  1163. -- style flags: 0
  1164. -- line height: 12
  1165. -- part name: Spreadsheets
  1166. ----- HyperTalk script -----
  1167. on mouseUp
  1168.   showMyField (short name of me)
  1169. end mouseUp
  1170.  
  1171.  
  1172.  
  1173. -- part 130 (field)
  1174. -- low flags: 80
  1175. -- high flags: 2007
  1176. -- rect: left=274 top=8 right=145 bottom=512
  1177. -- title width / last selected line: 0
  1178. -- icon id / first selected line: 0 / 0
  1179. -- text alignment: 0
  1180. -- font id: 20
  1181. -- text size: 14
  1182. -- style flags: 0
  1183. -- line height: 16
  1184. -- part name: Apple IIe Emulation
  1185.  
  1186.  
  1187. -- part 131 (button)
  1188. -- low flags: 00
  1189. -- high flags: A002
  1190. -- rect: left=129 top=241 right=259 bottom=259
  1191. -- title width / last selected line: 0
  1192. -- icon id / first selected line: 0 / 0
  1193. -- text alignment: 0
  1194. -- font id: 3
  1195. -- text size: 9
  1196. -- style flags: 0
  1197. -- line height: 12
  1198. -- part name: Statistics and Math
  1199. ----- HyperTalk script -----
  1200. on mouseUp
  1201.   showMyField (short name of me)
  1202. end mouseUp
  1203.  
  1204.  
  1205.  
  1206. -- part 132 (field)
  1207. -- low flags: 80
  1208. -- high flags: 2007
  1209. -- rect: left=274 top=8 right=145 bottom=512
  1210. -- title width / last selected line: 0
  1211. -- icon id / first selected line: 0 / 0
  1212. -- text alignment: 0
  1213. -- font id: 20
  1214. -- text size: 14
  1215. -- style flags: 0
  1216. -- line height: 16
  1217. -- part name: Student Productivity
  1218.  
  1219.  
  1220. -- part 134 (button)
  1221. -- low flags: 00
  1222. -- high flags: A002
  1223. -- rect: left=129 top=258 right=276 bottom=259
  1224. -- title width / last selected line: 0
  1225. -- icon id / first selected line: 0 / 0
  1226. -- text alignment: 0
  1227. -- font id: 3
  1228. -- text size: 9
  1229. -- style flags: 0
  1230. -- line height: 12
  1231. -- part name: Student Management
  1232. ----- HyperTalk script -----
  1233. on mouseUp
  1234.   showMyField (short name of me)
  1235. end mouseUp
  1236.  
  1237.  
  1238.  
  1239. -- part 135 (field)
  1240. -- low flags: 80
  1241. -- high flags: 2007
  1242. -- rect: left=274 top=8 right=145 bottom=512
  1243. -- title width / last selected line: 0
  1244. -- icon id / first selected line: 0 / 0
  1245. -- text alignment: 0
  1246. -- font id: 20
  1247. -- text size: 14
  1248. -- style flags: 0
  1249. -- line height: 16
  1250. -- part name: File Server
  1251.  
  1252.  
  1253. -- part 136 (button)
  1254. -- low flags: 00
  1255. -- high flags: A002
  1256. -- rect: left=129 top=275 right=293 bottom=259
  1257. -- title width / last selected line: 0
  1258. -- icon id / first selected line: 0 / 0
  1259. -- text alignment: 0
  1260. -- font id: 3
  1261. -- text size: 9
  1262. -- style flags: 0
  1263. -- line height: 12
  1264. -- part name: Student Productivity
  1265. ----- HyperTalk script -----
  1266. on mouseUp
  1267.   showMyField (short name of me)
  1268. end mouseUp
  1269.  
  1270.  
  1271.  
  1272. -- part 137 (field)
  1273. -- low flags: 80
  1274. -- high flags: 2007
  1275. -- rect: left=274 top=8 right=145 bottom=512
  1276. -- title width / last selected line: 0
  1277. -- icon id / first selected line: 0 / 0
  1278. -- text alignment: 0
  1279. -- font id: 20
  1280. -- text size: 14
  1281. -- style flags: 0
  1282. -- line height: 16
  1283. -- part name: Discipline Specific Software
  1284.  
  1285.  
  1286. -- part 138 (button)
  1287. -- low flags: 00
  1288. -- high flags: A002
  1289. -- rect: left=129 top=292 right=310 bottom=259
  1290. -- title width / last selected line: 0
  1291. -- icon id / first selected line: 0 / 0
  1292. -- text alignment: 0
  1293. -- font id: 3
  1294. -- text size: 9
  1295. -- style flags: 0
  1296. -- line height: 12
  1297. -- part name: Unix
  1298. ----- HyperTalk script -----
  1299. on mouseUp
  1300.   showMyField (short name of me)
  1301. end mouseUp
  1302.  
  1303.  
  1304.  
  1305. -- part 140 (button)
  1306. -- low flags: 00
  1307. -- high flags: A002
  1308. -- rect: left=129 top=309 right=327 bottom=259
  1309. -- title width / last selected line: 0
  1310. -- icon id / first selected line: 0 / 0
  1311. -- text alignment: 0
  1312. -- font id: 3
  1313. -- text size: 9
  1314. -- style flags: 0
  1315. -- line height: 12
  1316. -- part name: Word Processing
  1317. ----- HyperTalk script -----
  1318. on mouseUp
  1319.   showMyField (short name of me)
  1320. end mouseUp
  1321.  
  1322.  
  1323.  
  1324. -- part 141 (field)
  1325. -- low flags: 80
  1326. -- high flags: 2007
  1327. -- rect: left=274 top=8 right=145 bottom=512
  1328. -- title width / last selected line: 0
  1329. -- icon id / first selected line: 0 / 0
  1330. -- text alignment: 0
  1331. -- font id: 20
  1332. -- text size: 14
  1333. -- style flags: 0
  1334. -- line height: 16
  1335. -- part name: Authoring Tools
  1336.  
  1337.  
  1338. -- part 142 (button)
  1339. -- low flags: 00
  1340. -- high flags: A003
  1341. -- rect: left=311 top=296 right=318 bottom=411
  1342. -- title width / last selected line: 0
  1343. -- icon id / first selected line: 0 / 0
  1344. -- text alignment: 1
  1345. -- font id: 0
  1346. -- text size: 12
  1347. -- style flags: 0
  1348. -- line height: 16
  1349. -- part name: NameHolder
  1350. ----- HyperTalk script -----
  1351. Animation
  1352.  
  1353.  
  1354. -- part contents for card part 62
  1355. ----- text -----
  1356. Word Processing:
  1357.   Claris Corp.,  MacWrite II
  1358.   Microsoft Corp., Word 4.0
  1359.   T-Maker Co., WriteNow
  1360.  
  1361.  
  1362. -- part contents for card part 63
  1363. ----- text -----
  1364. Spreadsheets:
  1365.   Microsoft, Corp., Excel
  1366.   Ashton Tate, Full Impact
  1367.   Informix Software, Inc.,  Wingz
  1368.  
  1369.  
  1370. -- part contents for card part 64
  1371. ----- text -----
  1372. DataBases:
  1373.   Claris Corp., FileMaker Pro
  1374.   Acius, Inc., 4th Dimension v.2.0
  1375.  
  1376.  
  1377. -- part contents for card part 65
  1378. ----- text -----
  1379. E-Mail
  1380.   CE Software, Inc., Quickmail
  1381.   Microsoft Corp., Microsoft Mail
  1382.  
  1383.  
  1384. -- part contents for card part 66
  1385. ----- text -----
  1386. Curriculum
  1387.   Too many to name.  See your authorized ASEC.
  1388.  
  1389.  
  1390. -- part contents for card part 67
  1391. ----- text -----
  1392. Accounting:
  1393.   Computer Assoc. Int‚Äôl , Simply Accounting
  1394.   Great PlainsSoftware , Accounting Series for the Mac
  1395.  
  1396.  
  1397. -- part contents for card part 68
  1398. ----- text -----
  1399. Business Management
  1400.   Claris  Corp. , MacProject
  1401.   Jam Software, Smart Alarms
  1402.  
  1403.  
  1404. -- part contents for card part 69
  1405. ----- text -----
  1406. Presentations
  1407.   Microsoft Corp., Powerpoint  2.01
  1408.   Aldus Corp., Persuasion   2.01
  1409.  
  1410.  
  1411. -- part contents for card part 70
  1412. ----- text -----
  1413. Data Entry & Retrieval
  1414.   Fairfield Software, Inc., Clear Access
  1415.   Anodyne Computing, Ltd., GQL
  1416.   Oracle Corp., ORACLE For Macintosh
  1417.  
  1418.  
  1419. -- part contents for card part 71
  1420. ----- text -----
  1421. Publishing:
  1422.   Aldus Corp., PageMaker 4.0
  1423.   Letraset, USA, Color Studio
  1424.   Adobe Systems, Inc.Adobe Illustrator
  1425.  
  1426.  
  1427. -- part contents for card part 72
  1428. ----- text -----
  1429. Architecture/Drafting
  1430.   Dynaware Corp., DynaPerspective
  1431.   Gimeor, Inc.,   MacArchitrion II
  1432.   Versacad Corp., VersaCad
  1433.  
  1434.  
  1435. -- part contents for card part 73
  1436. ----- text -----
  1437. CAD/CAM
  1438.   Claris Corp., Claris CAD 2.0
  1439.   Schlumberger Technologies , MacBravo
  1440.   Integraph Corp., Microstation
  1441.  
  1442.  
  1443. -- part contents for card part 74
  1444. ----- text -----
  1445. Unix
  1446.   Apple Computer: A/UX
  1447.  
  1448.  
  1449. -- part contents for card part 75
  1450. ----- text -----
  1451. Software Engineering
  1452.   Symantec Corp., Think C
  1453.   Apple Computer, Inc. , A/UX
  1454.  
  1455.  
  1456. -- part contents for card part 76
  1457. ----- text -----
  1458. Modeling and Simulation Tools
  1459.   Imagine That, Inc., Extend
  1460.   D2 Software, Inc.MacSpin
  1461.   High Performance Systems, Inc., STELLA
  1462.  
  1463.  
  1464. -- part contents for card part 77
  1465. ----- text -----
  1466. 3-D Rendering
  1467.   Strata, Inc., StrataVision 3d
  1468.   Silicon Beach Software, Super 3D,
  1469.   Byte by Byte, Sculpt 3D
  1470.  
  1471.  
  1472. -- part contents for card part 78
  1473. ----- text -----
  1474. Animation
  1475.   MacroMind, Inc.,  Director
  1476.   Oasys, Inc., Animation Stand, Linker Systems
  1477.  
  1478.  
  1479. -- part contents for card part 102
  1480. ----- text -----
  1481. Document processing (for Higher Ed)
  1482.   Claris Corp. , MacWrite II
  1483.   Microsoft Corp., Word 4.0
  1484.   T-Maker Co. , WriteNow
  1485.   Sensible Software,Inc., Bookends Mac
  1486.   Niles & Associates, Inc., EndNote
  1487.   Personal Bibliographic Software, Pro-Cite for Macintosh
  1488.  
  1489.  
  1490. -- part contents for card part 104
  1491. ----- text -----
  1492. Multi Media
  1493.   MacroMind, Inc., Media Maker
  1494.   HyperPro, Inc., Video Author
  1495.   Silicon Beach Software, SuperCard
  1496.  
  1497.  
  1498. -- part contents for card part 107
  1499. ----- text -----
  1500. Science Research
  1501.   Wolfram Research, Inc., Mathematica
  1502.  
  1503.  
  1504. -- part contents for card part 111
  1505. ----- text -----
  1506. Note Organizers
  1507.   Innovision, Calliope Plus
  1508.   Ceres Software, Inc., Inspiration
  1509.   Symantec Corp., More II
  1510.   Mainstay, Think ‚Äòn Time
  1511.  
  1512.  
  1513. -- part contents for card part 113
  1514. ----- text -----
  1515. Library Access
  1516.   Mitem Corp., MitemView
  1517.  
  1518.  
  1519. -- part contents for card part 115
  1520. ----- text -----
  1521. Statistics and Math
  1522.   Odesta Corp., Data Desk
  1523.   SAS Institute, Inc., JMP
  1524.   Wolfram Research, Inc., MatheMatica
  1525.   SPSS, Inc., SPSS
  1526.   Prescience Corp., Theorist
  1527.  
  1528.  
  1529. -- part contents for card part 117
  1530. ----- text -----
  1531. Bibliographic Tools
  1532.   Niles & Associates, Inc., EndNote
  1533.   Park Row Software, Publish or Perish
  1534.  
  1535.  
  1536. -- part contents for card part 120
  1537. ----- text -----
  1538. Exec Info System
  1539.   Information Associates, ESS
  1540.   Software AG of North America, Inc., Natural Connection
  1541.  
  1542.  
  1543. -- part contents for card part 122
  1544. ----- text -----
  1545. Gradebook/Lesson Planning
  1546.   Executive Productivity Systems , EPS Teacher Assistant
  1547.   Logic Extension Resources, LXR Gradebook
  1548.  
  1549.  
  1550. -- part contents for card part 124
  1551. ----- text -----
  1552. Student Management
  1553.   Computer Curriculum Corp., CCC
  1554.   Jostens‚Äôs Learning Corp., Integrated Learning Systems
  1555.   Keymaster Design Group, Inc., Keymaster
  1556.  
  1557.  
  1558. -- part contents for card part 126
  1559. ----- text -----
  1560. Student Productivity
  1561.   Logo Computer Systems, Inc., LCSI LogoWriter
  1562.   Scholastic, Inc., Bank Street Writer
  1563.  
  1564.  
  1565. -- part contents for card part 128
  1566. ----- text -----
  1567. Educational Multi Media
  1568.   Scholastic, Inc., Point of View           800-541-5513
  1569.  
  1570.  
  1571. -- part contents for card part 130
  1572. ----- text -----
  1573. Apple IIe Emulation
  1574.   See your Apple Reseller for information on Apple II products.
  1575.  
  1576.  
  1577. -- part contents for card part 135
  1578. ----- text -----
  1579. File Server
  1580. Apple Computer: AppleShare
  1581.  
  1582.  
  1583. -- part contents for card part 137
  1584. ----- text -----
  1585. Discipline specific curriculum software
  1586.   (see your reseller for more information)
  1587.  
  1588.  
  1589. -- part contents for card part 141
  1590. ----- text -----
  1591. Authoring Tools
  1592.   Authorware, Inc., Authorware  Professional
  1593.   Macromind, Inc.,  Director
  1594.   Silicon Beach Software, SuperCard
  1595.   Apple Computer, Inc., HyperCard
  1596.  
  1597.  
  1598. -- part contents for card part 1
  1599. ----- text -----
  1600. 3-D Rendering
  1601. Accounting
  1602. Animation
  1603. Apple IIe Emulation
  1604. Architecture/Drafting
  1605. Authoring Tools
  1606. Bibliographic Tools
  1607. Business Management
  1608. CAD/CAM
  1609. Curriculum
  1610. Data Entry & Retrieval
  1611. Database
  1612. Discipline Specific Software
  1613. Document Processing
  1614. E-Mail
  1615. Education Multimedia
  1616. Executive Information System
  1617. File Server
  1618. Gradebook/Lesson Planning
  1619. Library Access
  1620. Modeling and Simulation Tools
  1621. Multimedia
  1622. Note Organizers
  1623. Presentations
  1624. Publishing
  1625. Science Research
  1626. Software Engineering
  1627. Spreadsheets
  1628. Statistics and Math
  1629. Student Management
  1630. Student Productivity
  1631. Unix
  1632. Word Processing
  1633.  
  1634.  
  1635. -- part contents for card part 132
  1636. ----- text -----
  1637.  
  1638.